html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

@font-face {
    font-family: Avenir roman;
    font-weight: normal;
    src: url(../../../font/Avenir-Roman.ttf);
}

body {
    font-family: Avenir roman;
}

.encabezado {
    margin: 15px 20px;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.match_empresarial {
    background: linear-gradient(90deg, #03A591 0%, #0880B4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 800;
    line-height: 108.611%;
}

.descripcion_match {
    color: #545454;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


@media(min-width:768px) {
    .encabezado {
        margin: 15px 50px;

    }
}

.principal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.centrar-contenido {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 75px;
}

.centar-buscador {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-buscador{
    max-width: 439px;
}

.form-buscador input {
    border-radius: 30px;
    background: #F9F9F9;
    box-shadow: 0px 0px 10px 0px rgba(148, 148, 148, 0.15);
    padding-left: 20px;
    width: 100%;
    height: 38px;
}

.imagenes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;

}

@media(min-width:470px) {
    .imagenes {
        grid-template-columns: 1fr 1fr;
    }

    .descripcion_match {
        width: 440px;
    }
}

@media(min-width:700px) {
    .imagenes {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .descripcion_match {
        width: 670px;
    }
}

@media(min-width:950px) {
    .imagenes {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .descripcion_match {
        width: 900px;
    }
}

@media(min-width:1190px) {
    .imagenes {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }

    .descripcion_match {
        width: 1130px;
    }
}

.card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 210px;
    width: 210px;
}

.especialidad {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    object-fit: cover;
    height: 200px;
}

.card-body {
    text-align: center;
}


/* Modal */

.encabezado-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.espacio-modal-alerta {
    margin-top: 20px;
}

.correo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.correo input {
    width: 400px;
    height: 38px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
    border: 1px solid #ccc;
    outline: none;
    padding-left: 20px;
}

.correo input:focus {
    outline: none;
    border: 1px solid #007BFF;
}

.div-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}


.confirmar {
    margin-top: 20px;
    color: #545454;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    max-width: 330px;
}


/* Boton Finalizar */

.box-footer {
    display: flex;
    justify-content: center;
}

.btn-30,
.btn-30 *,
.btn-30 :after,
.btn-30 :before,
.btn-30:after,
.btn-30:before {
    border: 0 solid;
    box-sizing: border-box;
    color: white;
}

.btn-30 {
    -webkit-tap-highlight-color: transparent;
    background-color: #F07F1E;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}


.btn-30 {
    height: 35px;
}

.btn-10 {
    height: 50px;
}

.btn-30:disabled {
    cursor: default;
}

.btn-30:-moz-focusring {
    outline: auto;
}

.btn-30 [hidden] {
    display: none;
}

.btn-30 {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 10px 25px;
    position: relative;
}

.btn-30 span {
    mix-blend-mode: color-dodge;
    font-size: 20px;
}

.btn-30:before {
    background: var(--degradado-marino-claro-medex, linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skew(0deg) translateX(-20%);
    transition: transform 0.2s ease;
    width: 120%;
}

.btn-30:hover:before {
    transform: skew(-45deg) translateX(75%);
}

.enlace-adquirir:hover {
    text-decoration: none;
}


/*  */
.swal-custom-title {
    color: #545454;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.swal-custom-html {
    font-size: 18px;
    color: #747474;
    text-align: center;
    line-height: 1.5;
}